home *** CD-ROM | disk | FTP | other *** search
/ Netware Super Library / Netware Super Library.iso / admin / top20net / tmsg / tmsg.txt < prev    next >
Encoding:
Text File  |  1995-03-04  |  957 b   |  30 lines

  1. Tracking System for NetWare Administration
  2.  
  3. Two programs make up the tracking system.  TMSG records your messages in an
  4. ASCII file.  TMSG_LOG takes the ASCII file, analyzes the records and updates
  5. two .DBF files, TR_LOGIN, and TR_MENUS.  These .DBF files can then be
  6. manipulated as you see fit.
  7.  
  8. If logged in to NetWare, messages are logged to SYS:LOGS\LOGMSG.DAT (make sure
  9. write rights have been granted!).  In stand-alone mode, messages are logged to
  10. C:\LOGS\LOGMSG.DAT.
  11.  
  12. If you are running say WordPerfect and Lotus 123 from these batch files, you
  13. can find out who's doing what for how long:
  14.  
  15.     W.BAT:
  16.         @echo off
  17.         tmsg * WP51 in
  18.         wp %1
  19.         tmsg * WP51 out
  20.  
  21.     LOTUS.BAT:
  22.         tmsg * 123 in
  23.         123 %1
  24.         tmsg * 123 out
  25.  
  26. If you put the line "tmsg I" in your login script, and have logouts done via a
  27. batch file which contains "tmsg O", then you can keep track of login/logout
  28. times.
  29.  
  30.